All Questions
4 questions
6votes
2answers
275views
Opposite access to enums
Consider I have many enums (Java) that looks somewhat like this: ...
1vote
1answer
105views
Passing some redundant parameters to an interface vs creating a new request object every time for the interface
I am writing a proxy class, that will fetch a certain property (say propertyA) by calling an underlying service. Currently we use Service A to get propertyA, but there is a chance that in the near ...
15votes
4answers
385views
More German overengineering™ - Class mappings and factories
Goals: So the plan was simple: Provide a factory to instantiate implementations of a certain interface (ModelConverter<T>), depending on what model-class you ...
2votes
1answer
677views
Ogg audio format conversion classes
This is my command interface: public interface IConverter { void convert(); } This is my Receiver class: ...